Fixed the theme changing when reload issue, Issue #1187 #1188
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Description:
Ensures that the theme selection persists across page reloads using localStorage.
Fixes the theme toggle button to correctly display:
Improves logic by checking localStorage on component mount and applying the correct theme class to document.documentElement.
Related Issues
#1187
Changes Proposed
When the page reloads, the component runs the useEffect hook, which:
Retrieves the stored theme from localStorage (if available).
Applies the saved theme by updating the theme state and toggling the "dark" class on document.documentElement.
This ensures that the theme remains consistent after a reload.
The toggleTheme function:
Switches between "dark" and "light".
Saves the new theme in localStorage.
Updates the document class accordingly.
As a result, the theme selection persists across sessions.
Checklist
Screenshots
Note to reviewers